home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C++ / Applications / HyperCuber 2.0 / source / CPrefsDialog.h < prev    next >
Encoding:
Text File  |  1994-04-05  |  787 b   |  29 lines  |  [TEXT/KAHL]

  1. //|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2. //| This file contains the interface to the CPrefsDialog class.  The
  3. //| CPrefsDialog class implements the preferences dialog.
  4. //|________________________________________________________________________________
  5.  
  6.  
  7. #include <CDialog.h>
  8. #include "CHyperCuberPrefs.h"
  9. #include "CColorPane.h"
  10.  
  11. CLASS CHyperCuberPane;
  12. CLASS CHyperCuberDoc;
  13.  
  14. class CPrefsDialog : public CDialog
  15.     {
  16.  
  17.  
  18.   public:
  19.  
  20.     CColorPane    *background_color_pane;    
  21.     CColorPane    *left_eye_color_pane;
  22.     CColorPane    *right_eye_color_pane;
  23.  
  24.     void IPrefsDialog(short WindowID, CDesktop *enclosure, CDirector *supervisor);
  25.     void InstallColorEntry(CColorPane **color_pane, short vert, char *color_name,
  26.                                         RGBColor *color, short help_res);
  27.     
  28.     };
  29.